Welcome![Sign In][Sign Up]
Location:
Search - knapsack problem

Search list

[AlgorithmKnapsack-problem-based-on-GA

Description: 本文件含论文及源代码。论文首先介绍了基本遗传算法的基本原理、特点及其基本实现技术,接着针对背包问题,论述了遗传算法在编码表示和遗传算子(包括选择算子、交叉算子变异算子这三种算子)等方面的应用情况。并且结合背包问题实例,给出了具体的编码方法,运行参数,群体大小,最大迭代次数,以及合适的遗传算子。最后,简单说明了遗传算法在求解背包问题中的应用并对遗传算法解决背包问题的前景提出了展望。-The file containing the papers and source code. The paper first introduces the basic principles of the basic genetic algorithm, the characteristics of its basic implementation techniques, and then for the knapsack problem, discusses the genetic algorithm coded representation and genetic operators (including selection operator, crossover operator mutation operator three count sub), and other aspects of the application. And the combination of an instance of the knapsack problem, given specific encoding method, operating parameters, population size, maximum number of iterations, and appropriate genetic operators. Finally, a brief description of the genetic algorithm Knapsack problem and genetic algorithm to solve the knapsack problem prospects prospect.
Platform: | Size: 420864 | Author: 李海波 | Hits:

[JSP/Javasolution-of-knapsack-problem

Description: 回溯法、分支限界法的原理,并能够按其原理编程实现解决0-1背包问题,以加深对回溯法、分支限界法的理解。 -Backtracking, branch and bound method principle, and can according to the principle of programming to realize solving knapsack problem, in order to deepen our understanding of the backtracking, branch and bound method understanding.
Platform: | Size: 90112 | Author: | Hits:

[OtherKnapsack-problem

Description: 数据结构的经典背包问题,C++实现版本,欢迎批评指正~-Knapsack problem for c++
Platform: | Size: 1222656 | Author: aby | Hits:

[AI-NN-PRGA-to-solve-knapsack-problem

Description: Genetic algorithm to solve knapsack problem
Platform: | Size: 3072 | Author: 康超 | Hits:

[Data structs0-1-Knapsack-problem

Description: 本次实验选择0-1背包问题作为题目,通过使用动态规划、回溯法和分支定界法等算法来求解该问题,从而进一步的了解各种算法的原理、思路及其本质,深化对算法的了解,锻炼自己对各种算法的分析和使用,熟悉软件底层算法和界面编程。-The 0-1 knapsack problem was chosen as the subject, through the use of dynamic programming, backtracking and branch and bound method algorithm to solve the problem, so as to further the understanding of the principles of various algorithms, ideas and nature, deepening of the algorithm Learn to exercise their own analysis of the various algorithms and use familiar with the software underlying algorithms and programming interface.
Platform: | Size: 202752 | Author: invest | Hits:

[OtherDeformation-knapsack-problem

Description: 背包问题的变形,可以更好的理解,01背包,完全背包,多重背包问题等问题-Deformation knapsack problem can be better understood, 01 backpacks, completely backpack, multiple knapsack problem and other issues
Platform: | Size: 49152 | Author: | Hits:

[VC/MFCCode-four-methods-knapsack-problem

Description: 背包问题的四种实现代码 动态规划 贪婪算法 回溯法 分支限界法-Four knapsack problem dynamic programming code backtracking greedy algorithm branch and bound method
Platform: | Size: 94208 | Author: mulanjingqian | Hits:

[Documentsknapsack-problem-

Description: 基于二重结构编码遗传算法求解背包问题的研究-Research knapsack problem based on dual-structure code genetic algorithm
Platform: | Size: 354304 | Author: 金明 | Hits:

[Otherknapsack-problem

Description: 代码实现的是背包问题的解决,背包问题是经典的算法问题。-Code is to solve the knapsack problem, knapsack problem is a classical algorithm for the problem.
Platform: | Size: 30720 | Author: | Hits:

[Special Effectsthe.01.Knapsack.Problem-

Description: 遗传算法求解01背包问题,代码、文档都有-01 knapsack problem genetic algorithm, code, documentation has
Platform: | Size: 201728 | Author: 高某某 | Hits:

[OtherMultiobjective-Knapsack-Problem

Description: this file introduce a fast and new algorithm called Multiobjective Knapsack Problem
Platform: | Size: 4096 | Author: mehdi | Hits:

[source in ebookknapsack-problem

Description: C++经典算法:背包问题讲解 共九课讲的非常清晰-C++ classic algorithms: knapsack problem to explain 9 sessions
Platform: | Size: 31744 | Author: 武子睿 | Hits:

[Energy industryknapsack-problem-UC

Description: 0-1背包问题解决机组组合问题(给定N中物品和一个背包。物品i的重量是Wi,其价值位Vi ,背包的容量为C。问应该如何选择装入背包的物品,使得转入背包的物品的总价值为最大?? 在选择物品的时候,对每种物品i只有两种选择,即装入背包或不装入背包。不能讲物品i装入多次,也不能只装入物品的一部分。因此,该问题被称为0-1背包问题。 )-0-1 knapsack problem solving unit commitment problem (in a given N items and a backpack. Weight of the items i is Wi, the value of bit Vi, knapsack capacity C. Ask how to choose the items into the backpack, making the turn The total value of goods for the biggest backpack?? when selecting items for each item i have only two choices, that is loaded or not loaded backpack backpack. items i can not speak loading times, can not just load part of the article, so the problem is called 0-1 knapsack problem.)
Platform: | Size: 1024 | Author: 王林 | Hits:

[JSP/JavaKnapsack-Problem

Description: 求解背包问题 从根目录下的systemconfig.ini文件获取数据 结果以图表方式显示-To solve the knapsack problem Get data from systemconfig.ini at root directory Results display in graph
Platform: | Size: 6318080 | Author: zh | Hits:

[Data structsKnapsack-problem

Description: 背包问题(Knapsack problem)是一种组合优化的NP完全问题。问题可以描述为:给定一组物品,每种物品都有自己的重量和价格,在限定的总重量内,我们如何选择,才能使得物品的总价格最高。-Knapsack problem
Platform: | Size: 279552 | Author: Tom chen | Hits:

[Data structsKnapsack-problem

Description: 可以解决背包问题,背包问题是一种组合优化的NP问题,选择最合适的物品放置于给定背包-Knapsack problem
Platform: | Size: 1024 | Author: nishuone | Hits:

[JSP/Java0-1-knapsack-problem--

Description: 算法分析与设计(王晓东版)的0-1背包问题的改进算法的java代码实现,实现背包问题的求解-Algorithm analysis and design (Wang Xiaodong version) algorithm to improve the 0-1 knapsack problem is java code
Platform: | Size: 2048 | Author: small rain | Hits:

[OtherKnapsack-problem-dynamic-programming

Description: 动态规划应用 使用动态规划算法解背包问题-Dynamic programming dynamic programming algorithm for solving knapsack problem
Platform: | Size: 1024 | Author: 安静风 | Hits:

[Software EngineeringSolving-the-knapsack-problem

Description: solving knapsack problem
Platform: | Size: 20480 | Author: faten | Hits:

[Software EngineeringMATLAB-Codes(-Knapsack-Problem)

Description: about using matlab for solving Knapsack Problem
Platform: | Size: 8192 | Author: behzadfar | Hits:
« 1 2 3 4 56 7 8 9 10 ... 50 »

CodeBus www.codebus.net